Copies the styles in the collection to a specified array of named styles.
Syntax
Parameters
- array
- One-dimensional array into which are copied the elements from ICollection; the array indexing must be zero-based.
- index
- Zero-based index in the array at which to paste the styles
Example
C# | Copy Code |
---|
FarPoint.Web.Spread.DefaultStyleCollection dsc = new FarPoint.Web.Spread.DefaultStyleCollection();
FarPoint.Web.Spread.NamedStyle[] style = new FarPoint.Web.Spread.NamedStyle[dsc.Count];
dsc.CopyTo((Array)style,0);
|
Visual Basic | Copy Code |
---|
Dim dsc As New FarPoint.Web.Spread.DefaultStyleCollection()
Dim style(dsc.Count()) As FarPoint.Web.Spread.NamedStyle
dsc.CopyTo(CType(style, Array), 0) |
Requirements
Target Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family
See Also